home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000239_news@columbia.edu _Fri Jan 5 10:18:24 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id KAA13963 for <kermit.misc@watsun>; Fri, 5 Jan 1996 10:18:23 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id KAA20119 for kermit.misc@watsun; Fri, 5 Jan 1996 10:18:19 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: using kermit w/ vertex software and PDT-3300 terminal
  8. Date: 5 Jan 1996 15:18:13 GMT
  9. Organization: Columbia University
  10. Lines: 33
  11. Message-ID: <4cjffl$jkk@apakabar.cc.columbia.edu>
  12. References: <4cgtd3$m5h@dub-news-svc-6.compuserve.com>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14. Keywords: vertex
  15.  
  16. In article <4cgtd3$m5h@dub-news-svc-6.compuserve.com>,
  17.  <73172.1615@compuserve.com> wrote:
  18. : i am using kermit to transmit files from a PC to a PDT-3300 portable
  19. : terminal.  earlier in the summer when performing some initial testing i
  20. : found that when transmitting a file that already existed on the portable
  21. : that the new file was renamed...which is what i expected.  presently,
  22. : when i transmit a file that already exists it is just overwriting the
  23. : file.  i have checked the MSKERMIT.INI file and i do have SET WARNING
  24. : ON.  i did a SHOW FILE command and it confirmed that files that already
  25. : existed would be renamed to a new file.  but...this is not occurring.
  26. : can anyone give me suggestions of what is going wrong?
  27. Let's assume that you are using the current version of MS-DOS Kermit,
  28. which is 3.14. In this version, by default, the OLD file is renamed,
  29. rather than the incoming (new) file.  The command that governs this is SET
  30. FILE COLLISION, with the following options:
  31.  
  32.    APPEND
  33.      Append the incoming file to the existing file.
  34.    BACKUP (default)
  35.      Rename the EXISTING (old) file.
  36.    RENAME
  37.      Rename the incoming (new) file.
  38.    OVERWRITE
  39.      Overwrite the existing file.
  40.    DISCARD
  41.      Refuse to accept the incoming file.
  42.    UPDATE
  43.      Refuse to accept the incoming file if its creation date is earlier
  44.      than that of the existing file -- works only if the other Kermit
  45.      supplies this information.
  46.  
  47. - Frank